Update Card Holder Details
Update the details of a card holder based on fresh inputs.
Method: POST
{{URL}}/cardv2
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameters | Description |
---|---|
reference Optional | String Unique reference ID of the request Sample value: "visadps100054" |
product Mandatory | String Name of the product associated with the card Sample value: "DEFAULT" |
program Mandatory | String Name of the program to which the card product is mapped Sample value: "DEFAULT" |
channel Mandatory | Enum Processing channel through which the card transaction happens Valid values: PULSE VISA_DPS Sample value: "VISA_DPS" |
transactionType Mandatory | String Type of operation/transaction Constant value: "UPDATE_CARD_HOLDER" |
customerId Mandatory | String Unique Id of the customer Sample value: "100000000006001" |
accountNumber Mandatory | String Account number of the customer Sample value: "400320588344662" |
cardHolder Mandatory | Object |
cardHolderId Mandatory | String Unique id of the card holder Sample value: "CH00000000020002" |
firstName Optional | String First name of the account holder Sample value: "Smith" |
lastName Optional | String Last name of the account holder Sample value: "Johnson" |
phoneNumber Optional | String Phone number of the account holder Sample value: "9456302150" |
emailId Optional | String Email address of the account holder Sample value: "mathewsandra+1@netxd.com" |
addressLine1 Optional | String First line of account holder's address Sample value: "77 HOIT RD" |
addressLine2 Optional | String Second line of account holder's address Sample value: "1st street" |
city Optional | String City where account holder resides Sample value: "EPSOM" |
state Optional | String State where account holder resides Sample value: "AZ" |
zipCode Optional | String Zipcode of account holder's address Sample value: "67859" |
- cURL
- C#
- Go
- NodeJs
curl --location --globoff '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data-raw '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100054","product":"DEFAULT","program":"DEFAULT","channel":"VISA_DPS","transactionType":"UPDATE_CARD_HOLDER","customerId":"100000000006001","accountNumber":"400320588344662","cardHolder":{"cardHolderId":"CH00000000020002","firstName":"Smith","lastName":"Johnson","phoneNumber":"9456302150","emailId":"mathewsandra+1@netxd.com","addressLine1":"77 HOIT RD","addressLine2":"1st street","city":"EPSOM","state":"AZ","zipCode":"67859"}},"api":{"signature":"{{signature}}","apiKey":"{{Api-key}}","credential":"{{cred}}"}}}'
var options = new RestClientOptions("{{URL}}/cardv2")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""method"": ""ledger.CARD.request"",
" + "\n" +
@" ""id"": ""1"",
" + "\n" +
@" ""params"": {
" + "\n" +
@" ""payload"": {
" + "\n" +
@" ""reference"": ""visadps100054"",
" + "\n" +
@" ""product"": ""DEFAULT"",
" + "\n" +
@" ""program"": ""DEFAULT"",
" + "\n" +
@" ""channel"": ""VISA_DPS"",
" + "\n" +
@" ""transactionType"": ""UPDATE_CARD_HOLDER"",
" + "\n" +
@" ""customerId"": ""100000000006001"",
" + "\n" +
@" ""accountNumber"": ""400320588344662"",
" + "\n" +
@" ""cardHolder"": {
" + "\n" +
@" ""cardHolderId"": ""CH00000000020002"",
" + "\n" +
@" ""firstName"": ""Smith"",
" + "\n" +
@" ""lastName"": ""Johnson"",
" + "\n" +
@" ""phoneNumber"": ""9456302150"",
" + "\n" +
@" ""emailId"": ""mathewsandra+1@netxd.com"",
" + "\n" +
@" ""addressLine1"": ""77 HOIT RD"",
" + "\n" +
@" ""addressLine2"": ""1st street"",
" + "\n" +
@" ""city"": ""EPSOM"",
" + "\n" +
@" ""state"": ""AZ"",
" + "\n" +
@" ""zipCode"": ""67859""
" + "\n" +
@" }
" + "\n" +
@" },
" + "\n" +
@" ""api"": {
" + "\n" +
@" ""signature"": ""{{signature}}"",
" + "\n" +
@" ""apiKey"": ""{{Api-key}}"",
" + "\n" +
@" ""credential"": ""{{cred}}""
" + "\n" +
@" }
" + "\n" +
@" }
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "{{URL}}/cardv2"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"method": "ledger.CARD.request",`+"
"+`
"id": "1",`+"
"+`
"params": {`+"
"+`
"payload": {`+"
"+`
"reference": "visadps100054",`+"
"+`
"product": "DEFAULT",`+"
"+`
"program": "DEFAULT",`+"
"+`
"channel": "VISA_DPS",`+"
"+`
"transactionType": "UPDATE_CARD_HOLDER",`+"
"+`
"customerId": "100000000006001",`+"
"+`
"accountNumber": "400320588344662",`+"
"+`
"cardHolder": {`+"
"+`
"cardHolderId": "CH00000000020002",`+"
"+`
"firstName": "Smith",`+"
"+`
"lastName": "Johnson",`+"
"+`
"phoneNumber": "9456302150",`+"
"+`
"emailId": "mathewsandra+1@netxd.com",`+"
"+`
"addressLine1": "77 HOIT RD",`+"
"+`
"addressLine2": "1st street",`+"
"+`
"city": "EPSOM",`+"
"+`
"state": "AZ",`+"
"+`
"zipCode": "67859"`+"
"+`
}`+"
"+`
},`+"
"+`
"api": {`+"
"+`
"signature": "{{signature}}",`+"
"+`
"apiKey": "{{Api-key}}",`+"
"+`
"credential": "{{cred}}"`+"
"+`
}`+"
"+`
}`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/cardv2',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100054",
"product": "DEFAULT",
"program": "DEFAULT",
"channel": "VISA_DPS",
"transactionType": "UPDATE_CARD_HOLDER",
"customerId": "100000000006001",
"accountNumber": "400320588344662",
"cardHolder": {
"cardHolderId": "CH00000000020002",
"firstName": "Smith",
"lastName": "Johnson",
"phoneNumber": "9456302150",
"emailId": "mathewsandra+1@netxd.com",
"addressLine1": "77 HOIT RD",
"addressLine2": "1st street",
"city": "EPSOM",
"state": "AZ",
"zipCode": "67859"
}
},
"api": {
"signature": "{{signature}}",
"apiKey": "{{Api-key}}",
"credential": "{{cred}}"
}
}
});
req.write(postData);
req.end();
Body
{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100054",
"product": "DEFAULT",
"program": "DEFAULT",
"channel": "VISA_DPS",
"transactionType": "UPDATE_CARD_HOLDER",
"customerId": "100000000006001",
"accountNumber": "400320588344662",
"cardHolder": {
"cardHolderId": "CH00000000020002",
"firstName": "Smith",
"lastName": "Johnson",
"phoneNumber": "9456302150",
"emailId": "mathewsandra+1@netxd.com",
"addressLine1": "77 HOIT RD",
"addressLine2": "1st street",
"city": "EPSOM",
"state": "AZ",
"zipCode": "67859"
}
},
"api": {
"signature": "{{signature}}",
"apiKey": "{{Api-key}}",
"credential": "{{cred}}"
}
}
}
Response: 200
Response Parameters
Parameters | Description |
---|---|
id | String Unique id of the response Sample value: " 1" |
result | Object |
cardHolderId | String Response Id echoed from the request Id Sample value: "CH00000000020002" |
api | Object |
type | String Acknowledgement for type of operation requested for Constant value: " UPDATE_CARD_HOLDER_ACK" |
reference | String Auto generated reference ID of this acknowledgment Sample value: " REFvisadps100054" |
dateCreated | Number Unix timestamp of the response was created Sample value: 1732095752 |
originalReference | String Original reference ID taken from the request Sample value: " visadps100054" |
{
"id": "1",
"result": {
"cardHolderId": "CH00000000020002",
"api": {
"type": "UPDATE_CARD_HOLDER_ACK",
"reference": "REFvisadps100054",
"dateCreated": 1732095752,
"originalReference": "visadps100054"
}
}
}